The BaseCollection<(Of <(<'T>)>)> is a base generic class for all collections in C1Schedule object model.

Namespace:  C1.C1Schedule
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[DefaultMemberAttribute("Item")]
[TypeConverterAttribute(typeof(CollectionConverter))]
public class BaseCollection<T> : C1ObservableKeyedCollection<Guid, T>
where T : BasePersistableObject
Visual Basic
<DefaultMemberAttribute("Item")> _
<TypeConverterAttribute(GetType(CollectionConverter))> _
Public Class BaseCollection(Of T As BasePersistableObject) _
	Inherits C1ObservableKeyedCollection(Of Guid, T)

Type Parameters

T
The type of the objects which will be stored in the collection. It should be derived from the BasePersistableObject class and have the default parameter-less constructor.

Inheritance Hierarchy

See Also